home *** CD-ROM | disk | FTP | other *** search
/ C/C++ 3D Game Tools / C-C++ 3D Game Tools.iso / ziptools / arj / ncav31a.arj / AVIEW.CTL next >
Encoding:
Text File  |  1993-08-29  |  5.8 KB  |  177 lines

  1. ; -----------------------------------------------------------------------------
  2. ; AVIEW V3.1a Sample control-file, DON'T USE TABS!
  3. ; -----------------------------------------------------------------------------
  4. ;
  5. ;
  6. ; BACKUP <Extension>
  7. ; With this statement you define the file-extension of a backup-file which is
  8. ; created by your editor used in the EDIT function, when the edited-file with
  9. ; this extension exists it is deleted after an edit/update, this must be done
  10. ; otherwise AVIEW cannot cleanup the tempory directorys correctly.
  11. BACKUP bak
  12. ;
  13. ;
  14. ;
  15. ; NOCOLOR
  16. ; With this statment you force AVIEW in black and white mode, this can be
  17. ; handy for laptop-users who have a LCD-Screen.
  18. ;NOCOLOR
  19. ;
  20. ;
  21. ;
  22. ; NOMOUSE
  23. ; With this statement you force AVIEW to ignore the mouse when detected.
  24. ;NOMOUSE
  25. ;
  26. ;
  27. ;
  28. ; VIEWER <Trigger> <Viewer> [<Parameters>]
  29. ; With this command you can define up to 16 viewers, with <Trigger> you
  30. ; specify the file-extension which must trigger the viewer, the <Trigger>
  31. ; may include wildcards. Default viewer when non-defined is WPVIEW for all
  32. ; type of files.
  33. VIEWER doc word %f
  34. VIEWER fli quickfli %f
  35. VIEWER gl  grasprt %f
  36. VIEWER gif bitmap %f
  37. VIEWER pcx bitmap %f
  38. VIEWER *   wpview %f
  39. ;
  40. ;
  41. ;
  42. ; EDITOR <Editor> [<Parameters>]
  43. ; With this command you define the editor to use with the edit-function.
  44. ; Default editor when non defined is NCEDIT.
  45. EDITOR ncedit %f
  46. ;
  47. ;
  48. ;
  49. ; EXTRACTPATH <Path>
  50. ; With this command you define the path where files must be extracted to,
  51. ; when this command is NOT used, AVIEW will prompt you for a path.
  52. EXTRACTPATH c:\unpacked
  53. ;
  54. ;
  55. ;
  56. ; SCREENMODE <Lines>
  57. ; With this statement you can define how many lines per screen AVIEW must
  58. ; use, valid number of lines are 25, 35, 40, 43 and 50, note that a number
  59. ; greater than 25 needs a EGA of VGA display-adapter.
  60. SCREENMODE 25
  61. ;
  62. ;
  63. ;
  64. ; SORT <Key> [ascending|descending]
  65. ; With this statement you can define how AVIEW must sort the file-lists as
  66. ; default, valid sort-keys are: NAME, EXTENSION, ORGSIZE, CMPSIZE, DATETIME
  67. ; and METHOD, optional you can specify with ASCENDING or DESCENDING the
  68. ; default sort direction.
  69. SORT name ascending
  70. ;
  71. ;
  72. ;
  73. ; TEMPPATH <Path>
  74. ; With this command you define the path AVIEW must use as work-directory,
  75. ; this can be a ram-drive which will speed-up AVIEW dramatically.
  76. TEMPPATH d:\
  77. ;
  78. ;
  79. ;
  80. ; SCANNER <Scanner> [<Parameters>]
  81. ; With this command you define the virus-scanner to use after files are
  82. ; unpacked with the unpack function, when no scanner is defined, no virus-
  83. ; scan will be performed.
  84. SCANNER scan %f /a /nomem /noexpire /nopause
  85. ;
  86. ;
  87. ;
  88. ; -----------------------------------------------------------------------------
  89. ; The following commands concerns the configuration of the parameters passed
  90. ; by AVIEW to the archive-utils.
  91. ; For normal operation of AVIEW, you don't need to change this, all the
  92. ; following commands are optional, the sample commands reflects the standard
  93. ; default configuration of AVIEW.
  94. ; -----------------------------------------------------------------------------
  95. ;
  96. ; xxxADD <Command-line>
  97. ; xxxDELETE <Command-Line>
  98. ; xxxEXTRACT <Command-Line>
  99. ; xxxUNPACK <Command-Line>
  100. ; xxxUPDATE <Command-Line>
  101. ; xxxRESPONSE <Response-char>
  102. ; With these commands you can configure the interface between AVIEW and the
  103. ; external archive-utilitys, the xxx can be ARC, ARJ, LHA, PAK, ZIP or ZOO.
  104. ; xxxADD      - Defines which parameters to use for adding a file to
  105. ;               an archive, this is used for the ADD function (F7).
  106. ; xxxDELETE   - Defines which parameters to use for deleting a file or files
  107. ;               from an archive, this is used for the DELETE function
  108. ;               (F8 or DEL).
  109. ; xxxEXTRACT  - Defines which parameters to use for extracting a file or files
  110. ;               from an archive, this is used for the extract-function.
  111. ; xxxUNPACK   - Defines which parameters to use for extracting ONE file from
  112. ;               an archive WITHOUT path, this is used internally in AVIEW.
  113. ; xxxUPDATE   - Defines which parameters to use for updating a file in an
  114. ;               archive, this is used after you edited a file from an archive.
  115. ; xxxRESPONSE - Defines which charachter to use before a file name to tell
  116. ;               the archiver that it is a response file, AVIEW defines
  117. ;               automatically when to use this or not.
  118. ;
  119. ; NOTE: There are two variables, %A and %F, thes two must ALWAYS exist in one
  120. ;       of the above parameters (except xxxRESPONSE), %A will be replaced by
  121. ;       AVIEW with the name of the archive processed, and %F with a filename
  122. ;       for adding/deleting/updating, note that AVIEW will automatically add
  123. ;       the response-file-char before the filename when needed.
  124. ;       The variables %A and %F are NOT optional!
  125. ;
  126. ; PKPak/PKUnpak - for ARC files.
  127. ARCadd      PKPAK -a %a %f
  128. ARCdelete   PKPAK -d %a %f
  129. ARCextract  PKUNPAK -r %a %f
  130. ARCunpack   PKUNPAK %a %f
  131. ARCupdate   PKPAK -u %a %f
  132. ARCresponse @
  133. ;
  134. ; ARJ - for ARJ files.
  135. ARJadd      ARJ a -jm -m1 -e %a %f
  136. ARJdelete   ARJ d %a %f
  137. ARJextract  ARJ x -y %a %f
  138. ARJunpack   ARJ e %a %f
  139. ARJupdate   ARJ u -jm -m1 %a %f
  140. ARJresponse !
  141. ;
  142. ; LHA - For LZH or LHA files.
  143. LHAadd      LHA a %a %f
  144. LHAdelete   LHA d %a %f
  145. LHAextract  LHA x -c %a %f
  146. LHAunpack   LHA e %a %f
  147. LHAupdate   LHA u %a %f
  148. LHAresponse @
  149. ;
  150. ; PAK - For PAK files.
  151. PAKadd      PAK A %a %f
  152. PAKdelete   PAK D %a %f
  153. PAKextract  PAK E /WA /I %a %f
  154. PAKunpack   PAK E %a %f
  155. PAKupdate   PAK U %a %f
  156. PAKresponse @
  157. ;
  158. ; PKZip/PKUnzip - for ZIP files.
  159. ZIPadd      PKZIP -ex %a %f
  160. ZIPdelete   PKZIP d %a %f
  161. ZIPextract  PKUNZIP -d -o %a %f
  162. ZIPunpack   PKUNZIP %a %f
  163. ZIPupdate   PKZIP -u -ex %a %f
  164. ZIPresponse @
  165. ;
  166. ; ZOO - for ZOO files.
  167. ZOOadd      ZOO -a %a %f
  168. ZOOdelete   ZOO -d %a %f
  169. ZOOextract  ZOO -e -S %a %f
  170. ZOOunpack   ZOO -e %a %f
  171. ZOOupdate   ZOO -u %a %f
  172. ZOOresponse @
  173. ;
  174. ;
  175. ;
  176. ; <EOF>
  177.